golang.org/x/net/http2.ClientConn.maxConcurrentStreams (field)

9 uses

	golang.org/x/net/http2 (current package)
		transport.go#L225: 	maxConcurrentStreams        uint32
		transport.go#L475: 		maxConcurrentStreams:        initialMaxConcurrentStreams, // "infinite", per spec. Use a smaller value until we have received server settings.
		transport.go#L633: 	maxConcurrent := cc.maxConcurrentStreams
		transport.go#L682: 		maxConcurrentOkay = cc.currentRequestCountLocked() < int(cc.maxConcurrentStreams)
		transport.go#L717: 	if cc.currentRequestCountLocked() >= int(cc.maxConcurrentStreams) {
		transport.go#L742: 	return max(0, int(cc.maxConcurrentStreams)-cc.currentRequestCountLocked())
		transport.go#L1395: 		if cc.currentRequestCountLocked() < int(cc.maxConcurrentStreams) {
		transport.go#L2495: 			cc.maxConcurrentStreams = s.Val
		transport.go#L2548: 			cc.maxConcurrentStreams = defaultMaxConcurrentStreams